home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / matchconfig.sql < prev    next >
Text File  |  2000-05-12  |  1KB  |  26 lines

  1. /* RCSVER $Id: matchconfig.sql,v 1.3 2000-01-11 18:18:10-06 randy Exp $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        matchconfig.sql
  6. * Date:        08/18/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the matchconfig table. This table contains
  9. *        parameters defining matching (reconciliation) behaviour.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE matchconfig
  13. (
  14.     errhours    NUMBER(38),     /* Number of hours a cashbox is given */
  15.                          /* prior to counting before it is */
  16.                         /* considered missing */
  17.     tolerance    NUMBER(4,2),    /* Allowed tolerance before a match */
  18.                         /* is marked out of balance (%) */
  19.     showall    NUMBER(38),     /* Display all probed data (1), or */
  20.                         /* just that w/ an intent to pull */
  21.                         /* or cb removal record (0) */
  22.     automatch    NUMBER(38),        /* 1/0: use automatching */
  23.     autopercent    NUMBER(4,2)        /* Percent difference to determine if */
  24.                         /* a probe will be matched with a count */
  25. );
  26.